home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 7
/
Apprentice-Release7.iso
/
Environments
/
Small Eiffel 0.4.8
/
lib_show
/
bench1
/
bench.csh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-04-13
|
255b
|
14 lines
#!/bin/csh -f
#
# Run this file to have a comparison
#
foreach b (*_bench.e)
set cmd="compile $b make -no_split -boost -O3"
set cmd="${SmallEiffel}/bin/$cmd"
$cmd >& /dev/null
echo "$b : "
/bin/time a.out >&! tmp
grep "user" tmp
end
/bin/rm -f tmp